home *** CD-ROM | disk | FTP | other *** search
/ LG Super CD / LG Super CD.iso / bitpim / bitpim-0.9.10-setup.exe / {app} / resources / cal_regular.xy < prev    next >
Encoding:
Text File  |  2006-12-06  |  1.1 KB  |  58 lines

  1. <html>
  2.  
  3. <head>
  4. <h3 align="center">Calendar Events</h3>
  5. <h5 align="center">${date_range}</h5>
  6. </head>
  7.  
  8. <body>
  9. <table class="table">
  10.  
  11. <thead>
  12. <tr>
  13. <th class="header_center_bold">Date/Day</th>
  14. <th class="header_center_bold">Start-End</th>
  15. <th class="header_left_bold">Description</th>
  16. <th class="header_center_bold">Repeat</th>
  17. <th class="header_center_bold">Alarm</th>
  18. </tr>
  19. </thead>
  20.  
  21. <py-open code="for m in events:"/>
  22. <tbody>
  23.  
  24. <tr>
  25. <td class="month_header">${m[0]}</td>
  26. </tr>
  27.  
  28. <py-open code="for n in m[1]:"/>
  29. <tr>
  30. <td class="date_day">${n[0]}  ${n[1]}</td>
  31. <td class="start_end">${n[2]} - ${n[4]}</td>
  32. <td class="description">${n[5]}</td>
  33. <td class="repeat">${n[6]}</td>
  34. <td class="alarm">${n[7]}</td>
  35. </tr>
  36.  
  37. <py-close/>
  38. </tbody>
  39. <py-close/>
  40.  
  41. <tfoot>
  42. <tr><td class="footnote"> </td></tr><br/>
  43. <tr>
  44. <td class="footnote">“Repeat” denotes events that are repeated daily (D), weekly (W), monthly (M) or yearly (Y).
  45. </td>
  46. </tr>
  47. <tr>
  48. <td class="footnote">“Alarm” indicated the time in advance of the event that the phone’s alarm will sound.
  49. </td>
  50. </tr>
  51. </tfoot>
  52.  
  53. </table>
  54.  
  55. </body>
  56.  
  57. </html>
  58.